/* 🔥 CONTAINER */
.container{
  width: 85%;
  max-width: 1350px;
  margin: 0 auto !important;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 🔥 MAIN SECTION */
.about-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;

  width: 100%;
  max-width: 1400px;

  margin: 60px auto;
}

/* 🔥 LEFT SIDE */
.about-text{
  width: 55%;
  margin-top: -20px;
}

.about-text p{
  font-size: 16px;
  color: #444;

  line-height: 1.6;
  text-align: justify;

  margin-bottom: 22px;
  margin-left: 0;   /* 🔥 remove 130px */

  width: 100%;
}

/* 🔥 RIGHT SIDE IMAGE */
.about-image{
  width: 45%;

  display: flex;
  justify-content: center;
}

.about-image img{
  width: 100%;
  max-width: 500px;

  margin-left: 0;   /* 🔥 remove 110px */
  margin-top: 20px;

  border-radius: 18px;

  display: block;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* 🔥 MOBILE */
@media(max-width:768px){

  .about-row{
    flex-direction: column;
    gap: 30px;
  }

  .about-text,
  .about-image{
    width: 100%;
  }

  .about-text p{
    font-size: 16px;
    line-height: 1.7;
  }

  .about-image img{
    max-width: 100%;
  }

}